home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1999 Spring / macformat-077.iso / Shareware Plus / Development / Akua Sweets 131 / Akua Sweets Examples / Misc / Collect Lines Example < prev    next >
Encoding:
Text File  |  1999-03-04  |  309 b   |  9 lines  |  [TEXT/ToyS]

  1. property kasExample : "This is an example text" & return & "I don't know what to write here" & return & "Hmmmm"
  2.  
  3.  
  4. on run
  5.     set whatTxt to collect lines of kasExample that match "*what*"
  6.     set tTxt to collect lines of kasExample that match "*t*"
  7.     set hTxt to collect lines of kasExample that match "+h*"
  8. end run
  9.